home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006032B < prev    next >
Text File  |  1992-06-02  |  326b  |  8 lines

  1.  
  2.     maxn(2, 3, 5);              /* returns 5, as would max(3,5)            */ 
  3.     maxn(5, 3, 5, 7, 11, 13)    /* returns 13, largest of the 5 values.    */ 
  4.     maxn(3, 3, 5, 7, 11, 13)    /* returns 7, largest of first 3 values.   */ 
  5.     maxn(1, 17);                /* also works with fewer than two values.  */ 
  6.  
  7.  
  8.